home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lantools / an110x / hellou.c next >
Text File  |  1991-08-21  |  704b  |  28 lines

  1. #include <stdio.h>
  2. #include <nwconn.h>
  3. #include <nwbindry.h>
  4. #include <nwmsg.h>
  5.  
  6. #define    MAX_BINDERY_OBJ_NAME_LEN    48
  7.  
  8. main()
  9. {
  10.     int    maxStations;
  11.     char    message[] = "Hello, universe";
  12.     WORD    i;
  13.     int    ccode;
  14.     char    objectName[MAX_BINDERY_OBJ_NAME_LEN];
  15.     WORD    objectType;
  16.  
  17.     maxStations = GetMaximumNumberOfStations();
  18.     for (i=1; i<=maxStations; i++) {
  19.         ccode = GetConnectionInformation(i, objectName, &objectType, (long *)NULL, (BYTE)NULL);
  20.         if (ccode)
  21.             printf("Unable to get information for connection %u\n", i);
  22.         else if (objectType == OT_USER) {
  23.             printf("Sent hello to %s at connection %d\n", objectName, i);
  24.             SendBroadcastMessage(message, &i, (BYTE *)NULL, 1);
  25.         }
  26.     }
  27. }
  28.